home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Classics 1
/
Game Classics 1.iso
/
dosgames
/
doom
/
levels_6
/
435
/
all_e1.bat
next >
Wrap
DOS Batch File
|
1994-11-26
|
2KB
|
44 lines
@echo off
cls
echo.
echo ──────────────────────────────────────
echo "WAY OUT AND STILL DOOMED"
echo [Episode 1]
echo Designed by Jonathan Wood
echo. Director, Winged Panther Creations
echo ──────────────────────────────────────
echo.
echo Thank you for playing my first original DOOM (tm) Episode #1,
echo entitled "Way Out and Still Doomed". If you do not have ALL the
echo missions for this episode, check your BBS or call 1-205-338-6839,
echo or write the address listed in this file's accompanying text file,
echo "ALL-E1.TXT", which also contains the episode's storyline.
echo.
echo.
pause
if not exist F-HOLD.WAD goto ErrMsg
if not exist T-BASE.WAD goto ErrMsg
if not exist P-PLANT.WAD goto ErrMsg
if not exist ARMORY.WAD goto ErrMsg
if not exist OPS.WAD goto ErrMsg
if not exist STATION.WAD goto ErrMsg
if not exist DIVIDE.WAD goto ErrMsg
if not exist R-DENS.WAD goto ErrMsg
if not exist PALACE.WAD goto ErrMsg
if not exist OPS.LMP goto ErrMsg
DOOM -FILE F-HOLD.WAD T-BASE.WAD P-PLANT.WAD ARMORY.WAD OPS.WAD STATION.WAD DIVIDE.WAD R-DENS.WAD PALACE.WAD -playdemo ops
goto End
:ErrMsg
echo.
echo You are missing one or more of the files that
echo constitute the new episode. If you would like
echo to proceed with what you have, start DOOM (tm)
echo manually using the following parameters:
echo type "DOOM -FILE ", followed by
echo the filenames for each of the
echo missions from this episode you
echo have, like "F-HOLD.WAD ", etc.
echo.
goto End
:End